home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 4275 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  762 b 

  1. Path: iesd.auc.dk!news
  2. From: Dennis <dkc@tuborg.nork.auc.dk>
  3. Newsgroups: comp.lang.c
  4. Subject: Re: inserting assembly code in C?
  5. Date: Fri, 02 Feb 1996 21:38:21 +0100
  6. Organization: Math & CS at Aalborg University
  7. Message-ID: <3112763D.145F@tuborg.nork.auc.dk>
  8. References: <4emsvo$lq4@linet02.li.net>
  9. NNTP-Posting-Host: tuborg.nork.auc.dk
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. NNTP-Posting-User: root
  14. X-Mailer: Mozilla 2.0b5 (Win95; I)
  15.  
  16. Don Matthews wrote:
  17. > I'm using Borland C compiler and I'd like to know how I would go about
  18. > inserting some assembly code into my C programs.
  19. > Thanks...
  20.  
  21. It is very easy.  
  22.  
  23. asm
  24. {
  25. //just write your assembler code here. 
  26. //Dont use any ; to terminate the lines.
  27. }
  28.